From: Jan Beulich Date: Tue, 31 Jul 2018 15:12:35 +0000 (+0200) Subject: x86/xstate: correct logging in handle_xsetbv() X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~3524 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=960d7b8ffbad12b065d72f1171780eb11f11ee91;p=xen.git x86/xstate: correct logging in handle_xsetbv() Correct a disagreement between text and logged value. Signed-off-by: Jan Beulich Acked-by: Andrew Cooper --- diff --git a/xen/arch/x86/xstate.c b/xen/arch/x86/xstate.c index c8197d2e40..15edd5df96 100644 --- a/xen/arch/x86/xstate.c +++ b/xen/arch/x86/xstate.c @@ -715,7 +715,7 @@ int handle_xsetbv(u32 index, u64 new_bv) { gprintk(XENLOG_ERR, "xcr0_max %016" PRIx64 " exceeds hardware max %016" PRIx64 "\n", - new_bv, xfeature_mask); + xcr0_max, xfeature_mask); domain_crash(curr->domain); return -EINVAL;